-
Re: OpenType 1.9 released
and by the way, let my introduce my BroshK font in COLRv1 format :)glukfonts.pl/g/BroshK-COLRv1 My algorithms are not yet perfect (no "Re-use layers"), but comparison to OT-SVG is is alread…1 -
Re: Any thoughts about Creative Fabrica?
"Spotify" model in world of fonts :) CreativeFabrica had a separate category "Color fonts", then I found it as a good place to sell my OpenTypeSVG fonts. they put a lot of emphasi…3 -
Re: Can’t color in glyphs of font in browser if it also contains COLR/CPAL & SVG table
deleted - misunderstanding :)1 -
Re: How can I get glyphs' names beyond 0x10000 in FF?
You can print glyphs names with simple python script: n=fontforge.activeFont(); temp=""; for i in n: temp+=i; temp+=" "; print temp; but those glyphs must exist in the font (on im…1 -
Re: How can I get glyphs' names beyond 0x10000 in FF?
No these are default glyph names in my FF to see printout You need to run fontforge in terminal to print names to file You can use simple script: import os; n=fontforge.activeFont(); temp="&quo…1